DailyMoodEvaluationScreen

fun DailyMoodEvaluationScreen(modifier: Modifier = Modifier, viewModel: DailyEvaluationViewModel = hiltViewModel(), openDrawer: () -> Unit, onNavigateToAnalytics: (Int) -> Unit, onNavigateToJournal: () -> Unit)

Composable for displaying the Daily Mood Evaluation screen with a top app bar and navigation options.

Parameters

modifier

Modifier for customizations to the layout.

viewModel

The ViewModel to provide the UI state for the daily mood evaluation.

openDrawer

A function to open the navigation drawer.

onNavigateToAnalytics

A function to navigate to the analytics screen with an optional parameter for the selected entry.

onNavigateToJournal

A function to navigate to the journal screen.